home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
600 Games
/
600games.iso
/
Puzzle
/
MahJongSolitaire.swf
/
scripts
/
frame_1
/
PlaceObject2_9_1
/
CLIPACTIONRECORD onClipEvent(enterFrame).as
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2005-08-04
|
371 b
|
19 lines
onClipEvent(enterFrame){
numTotal = _root.getBytesTotal();
numLoaded = _root.getBytesLoaded();
numPercent = Math.floor(numLoaded * 100 / numTotal);
if(numPercent < 10)
{
strL = "0" + numPercent;
}
else
{
strL = numPercent;
}
_root.strLoaded = strL + "%";
if(numPercent >= 99)
{
_root.play();
}
}